home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2002 July
/
07_02.iso
/
software
/
xq-xsetup
/
files
/
setup.exe
/
{app}
/
plugins
/
XQ WinME Net Crawling.xpl
< prev
next >
Wrap
Text File
|
2002-04-12
|
1KB
|
40 lines
"FILE"="Xteq Systems X-Setup Plugin 6.0"
"TYPE"="6"
"COUNT"="1"
"UIPATH"="Appearance\Desktop\Icons\'My Network Places' Options"
"OSVERSION"="00001"
"NAME"="Windows ME Workgroup Crawling"
"VERSION"="2.03"
"LANGUAGE"="VBScript"
"TEXT 1"="Allow Net Crawling on Network Places"
"DESCRIPTION 1"="By default, Net Crawling in 'My Network Places' is enabled in Windows ME."
"DESCRIPTION 2"="Uncheck box to disable Net Crawling if you want to."
"AUTHOR"="Ojatex@aol.com"
"COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
"COMMENT 1"="Thanks to CptSiskoX for suggested plugin."
sP="HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced\NoNetCrawling"
Sub Plugin_Initialize
i=RegReadValue(sP)
if i<>1 then SetUIElement 1,true
End Sub
Sub Plugin_CheckData(ElementIndex)
End Sub
Sub Plugin_Apply(ElementIndex,ElementSubIndex)
b=GetUIElement(1)
if b=true then
Call RegWriteValue(sP,"0",2)
else
Call RegWriteValue(sP,"1",2)
end if
End Sub
Sub Plugin_Terminate
End Sub